GdPicture.NET.14
GdPicture14 Namespace / GdPictureOfficeTemplateBuilder<T> Class / AddArrayOfStrings Method
The name of the section containing the array.
The array of string values to add.





In This Topic
AddArrayOfStrings Method (GdPictureOfficeTemplateBuilder<T>)
In This Topic
Adds an array of strings to the template.
Syntax
'Declaration
 
Public Function AddArrayOfStrings( _
   ByVal sectionName As String, _
   ByVal ParamArray arrayOfStringValues() As String _
) As T
public T AddArrayOfStrings( 
   string sectionName,
   params string[] arrayOfStringValues
)
public function AddArrayOfStrings( 
    sectionName: String;
   params  arrayOfStringValues: Stringarray of
): T; 
public function AddArrayOfStrings( 
   sectionName : String,
   arrayOfStringValues : String[]
) : T;
public: T* AddArrayOfStrings( 
   string* sectionName,
   params string*[]* arrayOfStringValues
) 
public:
T^ AddArrayOfStrings( 
   String^ sectionName,
   ... array<String^>^ arrayOfStringValues
) 

Parameters

sectionName
The name of the section containing the array.
arrayOfStringValues
The array of string values to add.

Return Value

The template builder instance.
See Also